473,434 Members | 1,541 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,434 software developers and data experts.

how to expand and hide sub-button

Hi,

I'm wondering how to use javascript to do something like:
TOP_Button

when clicking on it, it becomes:

TOP_Button
sub_button_1
sub_button_2

and clicking TOP_Button again, two sub_buttons get hidden.

but clicking on sub_button, it should not be hidden.

--
Thanks
John
Toronto

Jan 10 '06 #1
9 2701
john_woo escreveu:
TOP_Button

when clicking on it, it becomes:

TOP_Button
sub_button_1
sub_button_2

and clicking TOP_Button again, two sub_buttons get hidden.


http://www.google.com.br/search?q=show+hide+javascript :)
--
Jonas Raoni Soares Silva
http://www.jsfromhell.com

Jan 10 '06 #2
Use the button element's hidden attribute, for example:

function unHideButton(buttonID)
{
node = document.getElementById("buttonID");
node.style.hidden = "visible";
}

function hideButton(buttonID)
{
node = document.getElementById("buttonID");
node.style.hidden = "hidden";
}

Jan 10 '06 #3
ph*******@gmail.com wrote:
Use the button element's hidden attribute, for example:
No, don't. An HTML button element doesn't have a 'hidden' attribute and
there is no CSS 'hidden' property, though the visibility property can
have a value of 'hidden'.

<URL: http://www.w3.org/TR/CSS21/visufx.ht...def-visibility >


function unHideButton(buttonID)
{
node = document.getElementById("buttonID");
There doesn't seem to be any need to make 'node' global, so keep it local.

var node = document.getElementById("buttonID");

node.style.hidden = "visible";
if (node) node.style.visibility = "visible";
or

node && node.style.visibility = "visible";
getElementById and support for the element's style object should be
feature tested.

The best way is to add functions dynamically so that if the appropriate
features aren't supported, the functions that require them aren't called
and the browser is left in a state that allows it to function without them.

Guessing that the functions are to be run using an onclick, all the
buttons could be made visible by default and a script used to detect
features and then add the functions and modify their style if appropriate.

}

function hideButton(buttonID)
{
node = document.getElementById("buttonID");
node.style.hidden = "hidden";
var node = document.getElementById("buttonID");
node && node.style.visibility = "hidden";
}

--
Rob
Jan 11 '06 #4
john_woo wrote:
Hi,

I'm wondering how to use javascript to do something like:
TOP_Button

when clicking on it, it becomes:

TOP_Button
sub_button_1
sub_button_2

and clicking TOP_Button again, two sub_buttons get hidden.

but clicking on sub_button, it should not be hidden.
If you are trying to create an hierarchical menu system, there are lots
of those around (though they're mostly pretty awful).

<URL:
http://search.atomz.com/search/?sp-q...p=All&sp-k=All


The example below does what you want, you should be able to modify it
fairly easily to use buttons if that's what's really needed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1">

<style type="text/css">
..clickable {
cursor: pointer;
color: #00f;
background-color: #fff;
text-decoration: underline;
}
</style>

<script type="text/javascript">
function initList(id)
{
// Check features before applying modifications
if ( !document.getElementById
|| !document.getElementsByTagName) {
return;
}

// Get the button
var topBtn = document.getElementById(id);

// More feature testing
if (!topBtn.style || !topBtn.parentNode) return;

// Get it's LI parent
var btnParent = getParentByTagName(topBtn, 'li');
if (!btnParent) return;

// Get the first UL child node
var btnSet = btnParent.getElementsByTagName('ul')[0];

// If next test OK, do changes else do nothing
if (btnSet){
topBtn.className = 'clickable';
toggleVis(btnSet);
topBtn.onclick = function(){toggleVis(btnSet);}
}
}

function getParentByTagName(el, nn)
{
nn = nn.toLowerCase();
while (el.parentNode && nn != el.nodeName.toLowerCase() ){
el = el.parentNode;
}
return (nn == el.nodeName.toLowerCase())? el : null;
}

function toggleVis(el)
{
// x introduced to prevent wrapping
var x = el.style;
x.visibility = ('hidden' == x.visibility)? 'visible' : 'hidden';
}

</script>
</head>
<body>
<ul>
<li><span id="topButton">LTOP_Button</span>
<ul>
<li>sub_button_1</li>
<li>sub_button_2</li>
</ul>
</li>
</ul>

<script type="text/javascript">
initList('topButton');
</script>

</body>
</html>
initList could be assigned to the body onload event, however if the
document is large and takes some time to load, the list of buttons might
be displayed for a short time before being hidden.

Putting it where it is means it will run as soon as the relevant
elements have been created. You may also want to look at the CSS
display property which can be toggled between 'none' and '' to hide and
show elements respectively.

--
Rob
Jan 11 '06 #5
I got it:

<form>
<input type="button" value="big" onclick="showHide();" />
<input type="button" value="sub_1" id="b1" />
<input type="button" value="sub_2" id="b2" />
</form>

<SCRIPT LANGUAGE="JavaScript">
<!--
function showHide() {
if (document.getElementById('b1').style.visibility != "hidden")
{
document.getElementById('b1').style.visibility = "hidden";
document.getElementById('b2').style.visibility = "hidden";
}
else {
document.getElementById('b1').style.visibility = "visible";
document.getElementById('b2').style.visibility = "visible";
}
}
//-->
</SCRIPT>

but still wondering whether it works in all browsers.

Jan 11 '06 #6
john_woo wrote:
I got it:
No, you don't.
<form>
`form' elements require the `action' attribute.
<input type="button" value="big" onclick="showHide();" /> ^
IE does not support XHTML. Declare HTML; omit the "/", you do not
need it and it is potentially harmful if you include it in HTML as
`<foo />' is equivalent to `<foo>&gt;' there.

Should be

<input type="button" value="big" onclick="showHide(this);">
<input type="button" value="sub_1" id="b1" />
<input type="button" value="sub_2" id="b2" />
</form>

<SCRIPT LANGUAGE="JavaScript">
<!--
That is utter nonsense, search the archives. Should be

<script type="text/javascript">
function showHide() {
if (document.getElementById('b1').style.visibility != "hidden")
{
document.getElementById('b1').style.visibility = "hidden";
document.getElementById('b2').style.visibility = "hidden";
}
else {
document.getElementById('b1').style.visibility = "visible";
document.getElementById('b2').style.visibility = "visible";
}
}
That is nonsense as well. Should be at least

function showHide(o)
{
var b1 = o.form.elements['b1'];
var b2 = o.form.elements['b2'];

if (b1 && typeof b1.style != "undefined" && b2)
{
var b = (b1.style.visibility != "hidden");
b1.style.visibility = b ? "hidden" : "visible";
b2.style.visibility = b ? "hidden" : "visible";
}
}
//-->
Unnecessary.
</SCRIPT>

but still wondering whether it works in all browsers.


It does not, but the corrected version at least should not break.
PointedEars
Jan 11 '06 #7
Thanks lots for the correction.

Can u tell what's the right idea to implement a javascript function to
achive such goal and make it work over various browsers?

--
John
Toronto

Jan 11 '06 #8
john_woo wrote:
Thanks lots for the correction.
You're welcome.
Can u tell what's the right idea to implement a javascript function to
achive such goal and make it work over various browsers?
Pardon? I just did.
--
[...]


If that should be a signature, it has to be separated with dashDashSPACE.
I am not sure if Google Groups is capable of leaving the trailing space
alone.
PointedEars
Jan 11 '06 #9
<i>hidden</i> was a typo, oops.

Jan 13 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: genetic.error | last post by:
I'm moving from Vb6 to VB.Net. I have a feeling this has come up before... The VS.Net MSDN file seems to state that the following should work: Form1.Show Form1.Visible = True Form1.Hide...
7
by: peter | last post by:
I use the click-to-expand menu at http://javascript.internet.com/navigation/click-to-expand-menu.html This works fine, but is there a way to expand or collapse all the menus? An example of how...
7
by: Darin | last post by:
I have a report that sub-totals on a group, then grand-totals at the report footer. If there's only one group, the sub-total and grand total are redundant, so I only want to show one of them. I...
1
by: Steven | last post by:
Hello, I have a problem in using TreeView. I want to know how the TreeView can automatically Expand a path I have accessed before? I have tried to use "path.Expand()", but it seems no good...
2
by: Jenny | last post by:
My codebehind file contains a lot of sub's. Is there a fast way to expand and collapse them in the VisualStudio? It's really exhausting to collapse them all after opening the project in the...
5
by: Kirk Graves | last post by:
Can anyone tell me why this code does not work? Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Hide() End Sub If runs, but the...
4
by: Matthew | last post by:
The following code does not hide the form. Any ideas why? Also, is there a workaround? I have VB.NET 2003. I have a system tray icon, and want to have that be the only thing showing when the...
4
by: BrianDH | last post by:
Hi I have an application with 3 windows forms. One of which I load at startup but hide, then show/hide based on users click. How can I test to see if the windows is hidden, or is at the moment...
4
by: Marcolino | last post by:
Hi I have a little problem with Treeview expand. So I'll try to explain. I Have one node and some subnodes like this +Nodes1 |------Subnodes 1 |------Subnodes 2 +Nodes2
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.